世界新聞傳播學院八十六學年度轉學考試

年級

()

考試科目

資訊管理系

電子計算機概論

 

(10%) 1.請列出CPU(Central Processing Unit)的組成元件,並解釋它們的功能。

(10%) 2.WindowsDOS增加了些什麼特性?

(10%) 3.主記憶儲存體(main storage)和次記憶儲存體(secondary storage)有什麼區別?而RAM是什麼,ROM又是什麼?

(10%) 4.試定義批次處理(batch processing)和交談式處理(interactive processing)

(10%) 5.解釋下列和C language有關的名詞,請勿只有中文翻譯:

compiler, linker, source code file, object coed file, executable file, syntax error,

semantic error, EOF, actual argument and formal argument.

(10%) 6.如果你想買一個桌上排版軟體,請問你希望它會含有哪些功能?

(10%) 7.for loop寫一個九九乘法表。

(10%) 8.在下列程式的空白中,填入適當的程式碼以便將s1的內容拷貝至s2

int main(void)

{     

       int I;

 

       char s1[]= “this is string #1”;

       char s2[        ];

 

       for(i=0;       ;i++) {

 

       }

}

 
 

 

 

 

 

 

 

 

 

 

 

 

 


(10%) 9.計算下列程式連續執行後每一行quack的值?

int quack =20;

quack % =3;

quack - =6;

quack / =8;

quack + =5;

quack * =10;

 
 

 

 

 

 

 

 


(10%)10.下列程式輸出在螢幕上的結果?

#include<stdio.h>

int main (void)

{int i =0;

 

while (i+ +<5)

printf( “Byte!”);

while(+ + i<7);

ruturn 0;}